home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Misc
/
InstallerNG
/
developer
/
gui
/
example
/
igui_DisableCancel.c
< prev
next >
Wrap
C/C++ Source or Header
|
1999-10-28
|
734b
|
43 lines
#include "includes.h"
#include "installergui_data.h"
/********************************************************************
*
* DESCRIPTION
*
*/
/********************************************************************
*
* STATIC
*
*/
/********************************************************************
*
* EXTERN
*
*/
/********************************************************************
*
* PUBLIC
*
*/
/********************************************************************
*
* CODE
*
*/
void __asm igui_DisableCancel(register __a0 APTR application, register __d0 BOOL state)
{
#ifdef DEBUG
DEBUG_MAKRO
#endif
set(((struct Application *) application)->app_ButtonCancel, MUIA_Disabled, state);
}